home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / kudzu / scsi.h < prev    next >
C/C++ Source or Header  |  2005-12-04  |  1KB  |  46 lines

  1. /* Copyright 1999-2003 Red Hat, Inc.
  2.  *
  3.  * This software may be freely redistributed under the terms of the GNU
  4.  * public license.
  5.  *
  6.  * You should have received a copy of the GNU General Public License
  7.  * along with this program; if not, write to the Free Software
  8.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  9.  *
  10.  */
  11.  
  12. #ifndef _KUDZU_SCSI_H_
  13. #define _KUDZU_SCSI_H_
  14.  
  15. #include "device.h"
  16. #include "kudzu.h"
  17.  
  18. struct scsiDevice {
  19.     /* common fields */
  20.     struct device *next;    /* next device in list */
  21.     int index;
  22.     enum deviceClass type;    /* type */
  23.     enum deviceBus bus;        /* bus it's attached to */
  24.     char * device;        /* device file associated with it */
  25.     char * driver;        /* driver to load, if any */
  26.     char * desc;        /* a description */
  27.     int detached;
  28.     void * classprivate;
  29.     /* SCSI-specific fields */
  30.     struct scsiDevice *(*newDevice) (struct scsiDevice *dev);
  31.     void (*freeDevice) (struct scsiDevice *dev);
  32.     void (*writeDevice) (FILE *file, struct scsiDevice *dev);
  33.     int (*compareDevice) (struct scsiDevice *dev1, struct scsiDevice *dev2);
  34.     unsigned int host;
  35.     unsigned int channel;
  36.     unsigned int id;
  37.     unsigned int lun;
  38.     char * generic;        /* SCSI generic device */
  39. };
  40.  
  41. struct scsiDevice *scsiNewDevice(struct scsiDevice *dev);
  42. struct device *scsiProbe(enum deviceClass probeClass, int probeFlags,
  43.             struct device *devlist);
  44.  
  45. #endif
  46.